home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-02-27 | 298 b | 15 lines | [TEXT/CWIE] |
- /* SK8 © 1997 Apple Computer, Inc.
- This code is protected under the current SK8 License
- See http://sk8.research.apple.com/ for more information
- Apple Research Laboratories
- */
-
-
- import java.awt.*;
-
- abstract class renderer {
- abstract void render(Graphics g, actor act, Region reg);
- }
-
-
-